home *** CD-ROM | disk | FTP | other *** search
- global gMasterData, gPrompter
-
- on enterLeafMenu
- go(label("Main"))
- bkgrdMusic(gMasterData)
- setPrompter()
- end
-
- on exitLeafMenu
- set the timeoutScript to EMPTY
- end
-
- on nextMovie
- stopSounds()
- exitLeafMenu()
- if gPrompter = 0 then
- set gPrompter to 1
- end if
- cursor(4)
- case the clickOn of
- 3:
- go(1, "Define")
- 4:
- go(1, "Island1")
- 5:
- go(1, "Island2")
- 6:
- go(1, "Skilluse")
- end case
- end
-
- on setPrompter
- set the timeoutLength to 30 * 60
- if voidp(gPrompter) then
- set gPrompter to 0
- end if
- case gPrompter of
- 0:
- set the timeoutScript to "clickDummy1"
- 1:
- set the timeoutScript to "clickDummy2"
- end case
- end
-
- on clickDummy1
- puppetSound("prompt1")
- set the timeoutScript to EMPTY
- end
-
- on clickDummy2
- puppetSound("prompt2")
- set the timeoutScript to EMPTY
- end
-